type github.com/jackc/pgx/v5/pgtype.intWrapper

9 uses

	github.com/jackc/pgx/v5/pgtype (current package)
		builtin_wrappers.go#L104: type intWrapper int
		builtin_wrappers.go#L106: func (w intWrapper) SkipUnderlyingTypePlan() {}
		builtin_wrappers.go#L108: func (w *intWrapper) ScanInt64(v Int8) error {
		builtin_wrappers.go#L120: 	*w = intWrapper(v.Int64)
		builtin_wrappers.go#L125: func (w intWrapper) Int64Value() (Int8, error) {
		pgtype.go#L615: 		return &wrapIntScanPlan{}, (*intWrapper)(target), true
		pgtype.go#L704: 	return plan.next.Scan(src, (*intWrapper)(dst.(*int)))
		pgtype.go#L1472: 		return &wrapIntEncodePlan{}, intWrapper(value), true
		pgtype.go#L1563: 	return plan.next.Encode(intWrapper(value.(int)), buf)